kgroad-frontend2/src/app/[locale]/create-report/page.tsx
2024-03-01 19:54:03 +06:00

31 lines
783 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Typography from "@/shared/ui/components/Typography/Typography";
import "./CreateReport.scss";
import dynamic from "next/dynamic";
import { Metadata } from "next";
import BreadCrumbs from "@/features/BreadCrumbs/BreadCrumbs";
export const metadata: Metadata = {
title: "KG ROAD | Написать обращение",
description: "Написать обращение KG ROAD",
};
const DynamicForm = dynamic(
() => import("@/widgets/forms/ReportForm/ReportForm"),
{
ssr: false,
}
);
const CreateReport = () => {
return (
<div className="create-report page-padding">
<BreadCrumbs homeRequired />
<Typography element="h2">Написать обращение</Typography>
<DynamicForm />
</div>
);
};
export default CreateReport;